home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 526-550 / disk_533 / bootgen / libraryinstall < prev    next >
Text File  |  1992-05-06  |  1KB  |  42 lines

  1. .
  2. ECHO "This script will install  req.library  and  arp.library,  after"
  3. ECHO "checking to see if you already have one.  If so, it  will check"
  4. ECHO "the version numbers of the installed one, and the  one in  this"
  5. ECHO "directory,  and give you the option of installing the one found"
  6. ECHO "here."
  7. ECHO ""
  8.  
  9. IF NOT EXISTS LIBS:req.library
  10.         ECHO "Can't find req.library, installing to current LIBS:"
  11.         COPY req.library LIBS:req.library
  12. ELSE
  13.         ECHO "Examine the version numbers ..."
  14.         ECHO ""
  15.         VERSION LIBS:req.library
  16.         ECHO "/Bootgen/req.library version 2.5"
  17.         ECHO ""
  18.         ASK "Shall I overwrite LIBS:req.library (y/n) "
  19.         IF WARN
  20.                 ECHO "Updating LIBS:req.library ..."
  21.                 COPY req.library LIBS:req.library
  22.         ENDIF
  23. ENDIF
  24.  
  25. IF NOT EXISTS LIBS:arp.library
  26.         ECHO "Can't find arp.library, installing to current LIBS:"
  27.         COPY arp.library LIBS:arp.library
  28. ELSE
  29.         ECHO ""
  30.         VERSION LIBS:arp.library
  31.         ECHO "/Bootgen/arp.library version 39.1"
  32.         ECHO ""
  33.         ASK "Shall I overwrite LIBS:arp.library (y/n) "
  34.         IF WARN
  35.                 echo "Updating LIBS:arp.library ..."
  36.                 copy arp.library LIBS:arp.library
  37.         ENDIF
  38. ENDIF
  39.  
  40. ECHO "All Done. Click now the close gadget to get rid of window."
  41. ENDCLI
  42.